home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / com / bbs / server / octps074 / script / pd_mlib.scr < prev    next >
Encoding:
Text File  |  1996-10-13  |  3.7 KB  |  162 lines

  1. /* -------------------------------------------------------------------
  2.  * Menu library for Pull-down menus, the #define MenuBarKeys is used
  3.  * in combination with all enddo... commands what makes it a lot
  4.  * easyer to handle this keys and avoid mistakes.  (Since v0.72a6
  5.  * this method is possible)
  6.  *
  7.  * Originally written on 18 May 1996, modified on 06 Oct 1996
  8.  */
  9. #define MenuBarKeys "*MQFSTB CursLeft CursRight"
  10.  
  11. /* -------------------------------------------------------------------
  12.  * Here does begin our menu library, it should end with the #endlib
  13.  * statement, the empty line after each menu is important and does
  14.  * indicate Octopus that the end of a menu is reached.
  15.  *
  16.  * Entry ---    will be trimmed to the menu width, it's used to draw
  17.  *              a line and split the menu into more 'parts'.
  18.  */
  19. #menulib
  20.  
  21. Title [*]Main
  22. Entry [A]About Octopus
  23. Entry [I]What time is it?
  24. Entry Sysop[R]Remote Shell
  25. Entry [Y]Yell the Sysop
  26. Entry ---
  27. Entry [L]List of users
  28. Entry [U]Upload file to user
  29. Entry [!]Quick Logoff
  30.  
  31. Title [Q]QWK
  32. Entry [1]Change NDX files
  33. Entry [2]ChangeQwkBulletins
  34. Entry [3]ResetLastread
  35. Entry [4]UnmarkQwkAreas
  36. Entry [5]SetQwkMaxMsgs
  37. Entry [6]All msgs/one area
  38. Entry [7]All msgs/marked
  39. Entry [8]New msgs/one area
  40. Entry [9]New msgs/marked
  41. Entry [0]New msgs/marked/days
  42. Entry [A]Mark msg areas
  43. Entry [U]Upload reply's
  44. Entry [H]Help about QWK
  45.  
  46. Title [F]File
  47. #ifdef MORE_OS
  48. Entry OS[O]Operating System
  49. #endif
  50. Entry FileGroups[G]Atari Filegroups
  51. Entry ---
  52. Entry Allfiles[A]Allfiles
  53. Entry [L]List files
  54. Entry [N]New files
  55. Entry ----
  56. Entry [K]Keyword search
  57. Entry [D]Download
  58. Entry [V]Verbose list
  59. Entry [U]Upload files
  60. Entry [I]Statistics
  61. Entry [P]Private upload
  62. Entry [1]Top downloads
  63. Entry [!]Quick Logoff
  64.  
  65. SubMenu FileGroups
  66. Entry [1]ATARI
  67. Entry [2]GENERAL
  68. #ifdef FANFILES
  69. Entry FAN[3]FANFILES
  70. #endif
  71. Entry [4]NESTFILES
  72. #ifdef AREALIST
  73. Entry ---
  74. Entry [5]ATARI     (detailed)
  75. Entry [6]GENERAL   (detailed)
  76. #ifdef FANFILES
  77. Entry [7]FANFILES  (detailed)
  78. #endif
  79. Entry [8]NESTFILES (detailed) 
  80. #endif
  81. Entry --
  82. Entry [X]All groups
  83.  
  84. Submenu Allfiles
  85. Entry [1]Download ALLFILES.LZH
  86. Entry [2]Download ATARI.LZH
  87. Entry [3]Download MSDOS.LZH
  88. Entry [4]Download OS2.LZH
  89. Entry [5]Download NEWFILES.LZH
  90.   
  91. Title [S]Statistics
  92. Entry [1]Last 15 Callers     
  93. Entry [2]Best 15 Downloaders 
  94. Entry [3]Best 10 Email writ. 
  95. Entry [4]Happy Birthday!     
  96. Entry [5]Your own status     
  97. Entry [6]Best 10 Netmail wrt.
  98. Entry [7]Filebase statistics 
  99. Entry [8]Best 15 Callers     
  100. Entry [9]Best 15 Uploaders   
  101. Entry [!]Quick Logoff
  102.  
  103. Title [T]Settings
  104. Entry [E]Screen Emulation
  105. Entry [H]Toggle Hotkeys
  106. Entry [O]Toggle moreprompt
  107. Entry [I]Toggle IBM graphics
  108. Entry [P]Change password
  109. Entry [L]New Screen-length
  110. Entry [W]New Screen-width
  111. Entry [R]Other date-format
  112. Entry [U]Def. Upload protocol
  113. Entry [D]Def. Download protocol
  114. Entry [A]Def. Archiver
  115. Entry [!]Quick Logoff
  116.  
  117. Title [B]Bulletins
  118. Entry [1]Atari Explorer
  119. Entry [2]Z-NET
  120. Entry [3]A-TOS (German)
  121. Entry [4]Dutch Net News
  122. Entry [5]Fido-News
  123. Entry [!]Quick Logoff
  124.  
  125. Title [M]Msgbase
  126. Entry MsgGroups[G]Msg Group
  127. Entry [R]Echo rules
  128. Entry [N]Scan new mail  
  129. Entry [E]Write E-mail message
  130. Entry [W]Write message to Sysop
  131. Entry [!] Quick Logoff   
  132.  
  133. SubMenu MsgGroups
  134. Entry [1]Local mail     
  135. #ifdef NESTMAIL
  136. Entry [2]NeST  
  137. #endif
  138. #ifdef ATARINETMAIL
  139. Entry [3]AtariNet  
  140. #endif
  141. #ifdef FAN10MAIL   
  142. Entry [4]Free Atari Network
  143. #endif
  144. #ifdef AREALIST
  145. Entry -----
  146. Entry [5]Local    (detailed)
  147. #ifdef NESTMAIL
  148. Entry [6]NeST     (detailed)
  149. #endif
  150. #ifdef ATARINETMAIL
  151. Entry [7]AtariNet (detailed)
  152. #endif
  153. #ifdef FAN10MAIL
  154. Entry [8]FAN      (detailed)
  155. #endif
  156. #endif
  157. Entry ---
  158. Entry [X]All msg areas
  159.  
  160. #endlib
  161.  
  162. /* End PULL_LIB.SCR */